home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / pygst.py < prev    next >
Text File  |  2009-10-06  |  2KB  |  65 lines

  1. # -*- Mode: Python; py-indent-offset: 4 -*-
  2. # pygst - Python bindings for the GStreamer multimedia framework.
  3. # Copyright (C) 1998-2002  James Henstridge
  4. #           (C) 2005 Edward Hervey
  5. #
  6. #   pygst.py: pygst version selection code.
  7. #
  8. #
  9. # This library is free software; you can redistribute it and/or
  10. # modify it under the terms of the GNU Library General Public
  11. # License as published by the Free Software Foundation; either
  12. # version 2 of the License, or (at your option) any later version.
  13. #
  14. # This library is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17. # Library General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU Library General Public
  20. # License along with this library; if not, write to the
  21. # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  22. # Boston, MA 02111-1307, USA.
  23. #
  24. # This allows parallel installation of gst-python
  25. #
  26. # In order to have backward compatibility
  27.  
  28. import sys
  29. import os.path
  30.  
  31. __all__ = ['require']
  32.  
  33. _pygst_dir = os.path.dirname(__file__) + '/gst-0.10'
  34.  
  35. _pygst_version = '0.10'
  36.  
  37. _pygst_required_version = None
  38.  
  39. class RequiredVersionError(ValueError, AssertionError):
  40.     # AssertionError is subclassed for compatibility reasons.
  41.     pass
  42.  
  43.  
  44. def require(version):
  45.     global _pygst_required_version
  46.  
  47.     if _pygst_required_version != None:
  48.         if _pygst_required_version != version:
  49.             raise RequiredVersionError, "a different version of gst was already required"
  50.         else:
  51.             return
  52.  
  53.     if sys.modules.has_key('gst'):
  54.         raise RequiredVersionError, "pygst.require() must be called before importing gst"
  55.  
  56.     if version != _pygst_version:
  57.         raise RequiredVersionError, "Only version '%s' is available" % _pygst_version
  58.  
  59.     # move the pygst path to the front
  60.     while _pygst_dir in sys.path:
  61.         sys.path.remove(_pygst_dir)
  62.     sys.path.insert(0, _pygst_dir)
  63.     
  64.     _pygst_required_version = version
  65.